home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Most Valuable Games 2
/
Most Valuable Games Volume 2 (MVP Publishing)(August 1995).iso
/
arcade
/
outridge
/
start.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-27
|
489b
|
25 lines
cls
echo off
echo This file will copy the game OUTER RIDGE to your 'C' hard disk.
echo It requires 1 MEG of hard drive space.
echo After you run it, you will be given the option of removing it from your
echo hard drive. Just answer 'yes' to the delete question.
choice /c:yn Go ahead with the copy to hard drive?
if errorlevel 2 goto end
if errorlevel 1 goto copy
goto end
:copy
xcopy *.* c:\outridge\
c:
cd \outridge
setup
outridge
cd..
deltree outridge
:end